home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Communications / pop3d / Source / Makefile < prev    next >
Makefile  |  1996-02-09  |  711b  |  30 lines

  1. # make file for the IP/TCP/POP3 server for VAX/UNIX 4.3BSD
  2.  
  3. CFLAGS=-O2 -arch m68k -arch i486 -arch hppa -arch sparc# -DSHADOWPWD
  4.  
  5. OBJS    = main.o folder.o util.o
  6. LIBS    = # -lshadow
  7.  
  8. all: pop3d
  9.  
  10. install: all just-install
  11.  
  12. just-install:
  13.     mkdirs /usr/local/lib/pop3
  14.     mkdirs /usr/local/man/man8
  15.     rm -f /etc/pop3d
  16.     install -o root -g wheel -m 0744 pop3d /usr/local/lib/pop3/in.pop3d
  17.     ln -s /usr/local/lib/pop3/in.pop3d /etc/pop3d
  18.     install -o root -g wheel -m 0644 pop3d.8 /usr/local/man/man8 
  19.     install -o root -g wheel -m 0644 in.pop3d.8 /usr/local/man/man8 
  20.  
  21. clean: all
  22.     rm -f *.o core pop3d
  23.  
  24. pop3d: $(OBJS)
  25.     cc $(CFLAGS) -o pop3d $(OBJS) $(LIBS)
  26.  
  27. main.o:    main.c pop3.h
  28. folder.o: folder.c pop3.h
  29. util.o: util.c pop3.h
  30.